public static Curve CreateCurve(
int degree,
IList<double> knots,
IList<XYZ> controlPoints
)
Public Shared Function CreateCurve (
degree As Integer,
knots As IList(Of Double),
controlPoints As IList(Of XYZ)
) As Curve
public:
static Curve^ CreateCurve(
int degree,
IList<double>^ knots,
IList<XYZ^>^ controlPoints
)
static member CreateCurve :
degree : int *
knots : IList<float> *
controlPoints : IList<XYZ> -> Curve